home *** CD-ROM | disk | FTP | other *** search
/ CICA 1995 August / CICA - The Ultimate Collection of Shareware for Windows (Disc 2) (August 1995).iso / disc2 / patches / symantec / rtlinc.exe / CERROR.H < prev    next >
C/C++ Source or Header  |  1993-08-06  |  403b  |  24 lines

  1. /*
  2.  * cerror.h
  3.  *
  4.  * handles critical error interrupt under DOS and DOS16RM
  5.  *
  6.  * written by: G. Eric Engstrom
  7.  */
  8.  
  9. #ifndef __CERROR_H
  10. #define __CERROR_H    1
  11.  
  12. #if __cplusplus
  13. extern "C"
  14.   {
  15. #endif
  16. void __cdecl cerror_open(void);                /* installs critical error handler */
  17. void __cdecl cerror_close(void);            /* de installs critical error handler */
  18.  
  19. #if __cplusplus
  20.   }
  21. #endif
  22.  
  23. #endif
  24.